.sb-header-top {
    padding: 10px 0;
}

.sb-header-top-logo {
    text-align: left;
}

.sb-header-top-logo.right {
    text-align: right;
}

.sb-header-top-logo img {
    max-height: 60px;
    /* adjust as needed */
}

.sb-header-tagline {
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    color: #1F6306;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.company-intro {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #333;
    text-align: justify;
    background: #f9f9f9;
    border-left: 4px solid #1F6306;
    /* green accent */
    padding: 18px 23px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.company-intro strong {
    color: #1F6306
}

.company-intro br {
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .company-intro {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 15px 18px;
    }
}

.about-section {
    background: rgb(255, 255, 255);
    font-family: "Poppins", Arial, sans-serif;
    color: #2c2c2c;
    font-size: 1.05rem;
    line-height: 1.4;
    text-align: justify;
}

.about-section strong {
    color: #1F6306
}

.about-section p {
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .about-section {
        font-size: 0.95rem;
        padding: 10px 10px;
        line-height: 1.7;
    }
}

.info-section {
    background-color: #f3f4ee;
    padding: 40px 0;
    font-family: "Poppins", sans-serif;
}

.info-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    color: #1F6306;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.3rem;
}

.info-card h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background-color: #c6902e;
    border-radius: 2px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
    text-align: justify;
}

.info-card strong {
    color: #1F6306
}

.vision-mission-section {
    padding-bottom: 40px;
}

.section-title {
    color: #00a6b4;
    font-size: 30px;
    font-weight: 800;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
}

/* GRID: 2x2 layout */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Mobile */
@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}


/* CARD STYLE */
.vm-card {
    background: #fff;
    border-radius: 10px;
    text-align: left;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Title */
.vm-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F6306;
}

/* Text */
.vm-text {
    font-size: 18px;
    color: #000000;
    text-align: justify;
}


/* List Icons */
.vm-card ul li img {
    width: 18px;
    margin-top: 3px;
}

.empower-section {
    background: linear-gradient(135deg, #f9fff9 0%, #e8f5e9 100%);
    text-align: center;
    padding: 50px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: "Poppins", sans-serif;
}

.empower-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1F6306;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.empower-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #99680c;
    margin: 10px auto 0;
    border-radius: 2px;
}

.empower-section p {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .empower-section {
        padding: 60px 15px;
    }

    .empower-section h2 {
        font-size: 1.6rem;
    }

    .empower-section p {
        font-size: 1rem;
    }
}

.leadership-section {
    background: linear-gradient(to bottom, #ffffff, #eaf4ea);
}

.section-title {
    color: #145a23;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ✅ Fixed image size */
.leader-img {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #145a23;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-img img {
    transform: scale(1.05);
}

.leader-name {
    color: #145a23;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.leader-role {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;

}

.leader-message {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
    min-height: 150px;
}

.leader-thanks {
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.brand-section {
    background-color: #f9f9f9;
}

.brand-section h2 {
    color: #1F6306;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center
}

.brand-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: #555;
    text-align: center;
}

.text-yellow {
    color: #FFCD1E;
}

@media (max-width: 768px) {
    .sb-header-top-tagline {
        display: none !important;
    }

    .sb-header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .sb-header-top-logo img {
        max-width: 100px;
        height: auto;
    }

    .sb-header-top-menu button {
        font-size: 18px;
        background: none;
        border: none;
    }
}

/* ===== Language Switcher Styling ===== */
.language-switcher {
    position: relative;
}

.language-switcher .btn {
    font-weight: 600;
    font-size: 14px;
    color: #551b00;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Add flag icon alignment */
.language-switcher .dropdown-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Improve dropdown look and offset */
.language-switcher .dropdown-menu {
    min-width: 160px;
    margin-top: 6px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: none;
}

/* Active or hovered language */
.language-switcher .dropdown-item.active,
.language-switcher .dropdown-item:hover {
    background-color: #e8f5e9;
    font-weight: bold;
}

/* Flag size (if using emoji flags) */
.language-switcher .dropdown-item::before {
    display: inline-block;
}

/* Keep dropdown above the nav bar */
.sb-header-top {
    z-index: 1050;
    position: relative;
}

/* === Blog Hero Section === */
.sb-hero-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sb-breadcrum1 {
    position: relative;
}

.sb-breadcrum1-thumb {
    position: relative;
    width: 100%;
    height: 350px;
    /* controls hero height */
    overflow: hidden;
}

.sb-breadcrum1-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(65%);
    /* dark overlay effect */
}

/* Text section */
.sb-breadcrum1-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.sb-breadcrum1-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    width: 100%;
    display: block;
    line-height: 1.2;
}

/* Breadcrumb Links */
.sb-breadcrum1-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sb-breadcrum1-content ul li {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0 5px;
}

.sb-breadcrum1-content ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.sb-breadcrum1-content ul li a:hover {
    color: #ffda47;
    /* accent color */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sb-breadcrum1-thumb {
        height: 250px;
    }

    .sb-breadcrum1-title {
        font-size: 36px;
    }

    .sb-breadcrum1-content ul li {
        font-size: 16px;
    }
}

.para-text {
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
}

.vission-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    /* reduce height */
}

.vission-list li:last-child {
    margin-bottom: 0;
}

.vission-list img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 3px;
    /* aligns icon vertically */
}

.vission-list p {
    margin: 0;
    line-height: 1.4;
    /* tighter spacing */
}

.sb-hero-area {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
